COOKIE

see it's a COOKIE class and it's good enough for me.

COOKIE class is a data structure that represents the components of an html cookie.

class COOKIE {
string data;
string expires;
string path;
string domain;
}

Members

Functions

parseCookieString
void parseCookieString(string http_cookie)

parse the cookie string and break into key=value pairs

toString
string toString()

return a string reprenstation in html of the cookie

Meta